home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Texteditors
/
Origami
/
bindings
/
key_split.awk
< prev
next >
Wrap
Text File
|
1996-09-26
|
259b
|
22 lines
BEGIN {
out=""
error=""
}
/^ *@start-reference-copy +[^ ]+ *$/ {
out=$2
next
}
/^ *@end-reference-copy*$/ {
out=""
}
out=="" {
next
}
{ if (substr($0,1,4)==";OCL")
print("@"substr($0,5)) >out
else
print($0) >out
next
}
#{{{}}}